home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / zcid.c < prev    next >
C/C++ Source or Header  |  1997-03-07  |  3KB  |  92 lines

  1. /* Copyright (C) 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zcid.c */
  20. /* CID-keyed font operators */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "gsmatrix.h"
  25. #include "gsccode.h"
  26. #include "gxfont.h"
  27. #include "bfont.h"
  28. #include "iname.h"
  29. #include "store.h"
  30.  
  31. /* Imported from zfont42.c */
  32. int build_gs_TrueType_font(P5(os_ptr op, font_type ftype,
  33.                   const char _ds *bcstr, const char _ds *bgstr,
  34.                   build_font_options_t options));
  35.  
  36. /* <string|name> <font_dict> .buildfont9/10 <string|name> <font> */
  37. /* Build a type 9 or 10 (CID-keyed) font. */
  38. /* Right now, we treat these like type 3 (with a BuildGlyph procedure). */
  39. private int
  40. build_gs_cid_font(os_ptr op, font_type ftype, const build_proc_refs *pbuild)
  41. {    int code;
  42.     gs_font_base *pfont;
  43.  
  44.     check_type(*op, t_dictionary);
  45.     code = build_gs_simple_font(op, &pfont, ftype, &st_gs_font_base,
  46.                     pbuild,
  47.                     bf_Encoding_optional |
  48.                     bf_FontBBox_required |
  49.                     bf_UniqueID_ignored);
  50.     if ( code < 0 )
  51.       return code;
  52.     return define_gs_font((gs_font *)pfont);
  53. }
  54. private int
  55. zbuildfont9(os_ptr op)
  56. {    build_proc_refs build;
  57.     int code = build_proc_name_refs(&build, NULL, "%Type9BuildGlyph");
  58.  
  59.     if ( code < 0 )
  60.       return code;
  61.     return build_gs_cid_font(op, ft_CID_encrypted, &build);
  62. }
  63. private int
  64. zbuildfont10(os_ptr op)
  65. {    build_proc_refs build;
  66.     int code = build_gs_font_procs(op, &build);
  67.  
  68.     if ( code < 0 )
  69.       return code;
  70.     make_null(&build.BuildChar); /* only BuildGlyph */
  71.     return build_gs_cid_font(op, ft_CID_user_defined, &build);
  72. }
  73.  
  74. /* <string|name> <font_dict> .buildfont11 <string|name> <font> */
  75. private int
  76. zbuildfont11(os_ptr op)
  77. {    return build_gs_TrueType_font(op, ft_CID_TrueType, (const char _ds *)0,
  78.                       "%Type11BuildGlyph",
  79.                       bf_Encoding_optional |
  80.                       bf_FontBBox_required |
  81.                       bf_UniqueID_ignored |
  82.                       bf_CharStrings_optional);
  83. }
  84.  
  85. /* ------ Initialization procedure ------ */
  86.  
  87. BEGIN_OP_DEFS(zcid_op_defs) {
  88.     {"2.buildfont9", zbuildfont9},
  89.     {"2.buildfont10", zbuildfont10},
  90.     {"2.buildfont11", zbuildfont11},
  91. END_OP_DEFS(0) }
  92.